home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / termsorc.lha / Extras / Source / gtlayout-source.lha / gtlayout_data.c next >
C/C++ Source or Header  |  1995-09-29  |  798b  |  36 lines

  1. /*  GadTools layout toolkit
  2. **
  3. **  Copyright © 1993-1995 by Olaf `Olsen' Barthel
  4. **  Freely distributable.
  5. */
  6.  
  7. #include "gtlayout_global.h"
  8.  
  9. ULONG             ghostingPat = 0x44441111;
  10. ULONG             checkPat = 0xAAAA5555;
  11.  
  12. struct ExecBase        *SysBase;
  13. struct Library        *IntuitionBase;
  14. struct GfxBase        *GfxBase;
  15. struct Library        *UtilityBase;
  16. struct Library        *GadToolsBase;
  17. struct Library        *KeymapBase;
  18. struct LocaleBase    *LocaleBase;
  19. struct Locale        *LTP_Locale;
  20. struct SignalSemaphore     LTP_LockSemaphore;
  21. struct MinList         LTP_LockList;
  22. struct IClass        *LTP_ImageClass,
  23.             *LTP_LevelClass,
  24.             *LTP_PopupClass,
  25.             *LTP_TabClass;
  26. struct MinList         LTP_EmptyList;
  27.  
  28. #ifdef DO_PICKSHORTCUTS
  29. UBYTE             LTP_Keys[2][256];
  30. struct SignalSemaphore     LTP_KeySemaphore;
  31. BOOLEAN             LTP_KeysInitialized;
  32. #endif
  33.  
  34. BOOLEAN             V39,
  35.              V40;
  36.